home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / oftpd_dos.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(12125);
  8.  script_bugtraq_id(9980);
  9.  script_version ("$Revision: 1.4 $");
  10.  script_cve_id("CAN-2004-0376");
  11.  
  12.  name["english"] = "oftpd denial of service";
  13.  
  14.  script_name(english:name["english"]);
  15.          
  16.  desc["english"] = "
  17. The remote FTP server seems to be oftpd 0.3.6 or older.
  18.  
  19. There is a bug in this version which may allow an attacker to
  20. disable this service remotely by sending a malformed PORT command.
  21.  
  22. An attacker may exploit this flaw to prevent this system from doing its job.
  23.  
  24. Solution : Upgrade to oftpd 0.3.7 or newer
  25. Risk factor : Medium";
  26.               
  27.  script_description(english:desc["english"]);
  28.             
  29.  
  30.  script_summary(english:"Determines if the remote oftpd server might be vulnerable to a DoS attack");
  31.  script_category(ACT_ATTACK);
  32.  script_family(english:"FTP");
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  35.           
  36.  script_dependencie("find_service.nes", "ftpserver_detect_type_nd_version.nasl", "ftp_anonymous.nasl");
  37.  script_require_keys("ftp/login", "ftp/wuftpd");
  38.  script_require_ports("Services/ftp", 21);
  39.   
  40.  exit(0);
  41. }
  42.  
  43. #
  44. # The script code starts here : 
  45. #
  46. include("ftp_func.inc");
  47.  
  48. login = get_kb_item("ftp/login");
  49. pass  = get_kb_item("ftp/password");
  50.  
  51.  
  52. port = get_kb_item("Services/ftp");
  53. if(!port)port = 21;
  54. if (! get_port_state(port)) exit(0);
  55.  
  56. banner = get_ftp_banner(port: port);
  57.  
  58. if ("Service ready for new user" >!< banner ) exit(0);
  59.  
  60. if ( ! login ) login = "ftp";
  61.  
  62. soc = open_sock_tcp(port);
  63. if(soc)
  64. {
  65.  if(ftp_log_in(socket:soc, user:login, pass:pass))
  66.  {
  67.   # oftpd 0.3.6 and older will happily return the size of
  68.   # a directory, whereas 0.3.7 issues an error.
  69.   send(socket:soc, data:'TYPE I\r\n');
  70.   err = ftp_recv_line(socket:soc);
  71.   send(socket:soc, data:'SIZE .\r\n');
  72.   err = ftp_recv_line(socket:soc);
  73.   if ( egrep(pattern:"^213 [0-9]*", string:err) ) security_warning(port);
  74.  }
  75. }
  76.